home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Programming / vbcc / machines / amiga68k / libsrc / string / strerror.c < prev    next >
Encoding:
C/C++ Source or Header  |  1998-06-24  |  138 b   |  12 lines

  1. #include <errno.h>
  2. #include <string.h>
  3.  
  4. extern char *_errors[];
  5.  
  6. char *strerror(int n)
  7. {
  8.     if(n>ERANGE) n=0;
  9.     return(_errors[n]);
  10. }
  11.  
  12.